home *** CD-ROM | disk | FTP | other *** search
- /* gfopec.c - generalized buffer file open function */
- /* allows either Binary or ASCII treatment */
- #include "stdio.h"
- #include "cminor.h"
-
- /* Digital Research version */
-
- FILE *gfopen(fn,fmode,ft)
- char fn[] ;
- char fmode[] ;
- int ft ;
- {
- if( ft == BIN_MODE )
- return( fopenb(fn,fmode) ) ;
- else return( fopena(fn,fmode) ) ;
- }
- /* end of version */
-
-